home *** CD-ROM | disk | FTP | other *** search
/ Galleria D'arte: Manet / Manet.iso / Dati / Slideshow.dxr / 00005_rinomina 1t01f in 1T01F.ls < prev    next >
Encoding:
Text File  |  2000-12-21  |  469 b   |  18 lines

  1. on rinomina
  2.   repeat with i = 1 to the number of castMembers of castLib "slide"
  3.     nome = member(i, "slide").name
  4.     repeat with h = 1 to the number of chars in nome
  5.       lettera = char h of nome
  6.       ascii = charToNum(lettera)
  7.       if ascii = 116 then
  8.         put "T" into char h of nome
  9.         next repeat
  10.       end if
  11.       if ascii = 102 then
  12.         put "F" into char h of nome
  13.       end if
  14.     end repeat
  15.     member(i, "slide").name = nome
  16.   end repeat
  17. end
  18.